simple.el (delete-forward-char): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Sat, 7 Aug 2010 10:11:07 +0000 (13:11 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 7 Aug 2010 10:11:07 +0000 (13:11 +0300)
lisp/ChangeLog
lisp/simple.el

index 18a11e133aabfe4912c1d0ac904f1b9037c609ef..77a5930fee74fd5a3f41c755b37b1b4552f5e395 100644 (file)
@@ -1,5 +1,7 @@
 2010-08-07  Eli Zaretskii  <eliz@gnu.org>
 
+       * simple.el (delete-forward-char): Doc fix.
+
        * tutorial.el (help-with-tutorial): Hack safe file-local variables
        after reading the tutorial.
 
index 43cb31b226bdba36c3f844a58f131a4f163c9330..c0d981ce180b6bae9962151611520b66d65a8555 100644 (file)
@@ -895,7 +895,7 @@ the end of the line."
        (t (delete-char (- n) killflag))))
 
 (defun delete-forward-char (n &optional killflag)
-  "Delete the previous N characters (following if N is negative).
+  "Delete the following N characters (previous if N is negative).
 If Transient Mark mode is enabled, the mark is active, and N is 1,
 delete the text in the region and deactivate the mark instead.
 To disable this, set `delete-active-region' to nil.